home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 June: Reference Library / Dev.CD Jun 96 RL / Dev.CD Jun 96 RL.toast / What's New? / Development Kits / Apple Game Sprockets DR1 / Examples / DroneZone / DZResource.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-24  |  1.4 KB  |  90 lines  |  [TEXT/MPS ]

  1. /*
  2.  *    File:        DZResource.h
  3.  *    Author:        Dan Venolia
  4.  *
  5.  *    Copyright © 1996 Apple Computer, Inc.
  6.  */
  7.  
  8. #ifndef __DZResource__
  9. #define __DZResource__
  10.  
  11. // WINDs
  12. enum {
  13.     kWindID_Display            = 128
  14. };
  15.  
  16. // ALRTs
  17. enum {
  18.     kAlrtID_About            = 128
  19. };
  20.  
  21. // DLOGs
  22. enum {
  23.     kDlogID_Config3DSound    = 128
  24. };
  25.  
  26. // DITLs
  27. enum {
  28.     kDITLID_About            = 128,
  29.     kDITLID_Config3DSound
  30. };
  31.  
  32. // Dialog items for kDITLID_Config3DSound
  33. enum {
  34.     kConfig3DSoundItem_OK    = 1,        // Button
  35.     kConfig3DSoundItem_Cancel,            // Button
  36.     kConfig3DSoundItem_Stereo,            // Radio
  37.     kConfig3DSoundItem_Mono,            // Radio
  38.     kConfig3DSoundItem_Headphones,        // Radio
  39.     kConfig3DSoundItem_Angle,            // Slider-like control
  40.     kConfig3DSoundItem_SetupBox,        // User item -- box
  41.     kConfig3DSoundItem_SetupLabel,        // Static text
  42.     kConfig3DSoundItem_AngleBox,        // User item -- box
  43.     kConfig3DSoundItem_AngleLabel,        // Static text
  44.     kConfig3DSoundItem_OKHilite            // User item -- OK button hilite
  45. };
  46.  
  47. // MBARs
  48. enum {
  49.     kMBarID_Main            = 128
  50. };
  51.  
  52. // MENUs
  53. enum {
  54.     kMenuID_Apple            = 128,
  55.     kMenuID_File
  56. };
  57.  
  58. // Apple menu items
  59. enum {
  60.     kAppleItem_About        = 1
  61. };
  62.  
  63. // File menu items
  64. enum {
  65.     kFileItem_Config3DSound    = 1,
  66.     kFileItem_1,
  67.     kFileItem_Quit
  68. };
  69.  
  70. // 3DMFs
  71. enum {
  72.     k3DMFID_AutoDrone        = 128,
  73.     k3DMFID_AutoDroneBurn,
  74.     k3DMFID_AutoDroneExplosion
  75. };
  76.  
  77. // PICTs
  78. enum {
  79.     kPictID_StartScreen        = 128
  80. };
  81.  
  82. // snds
  83. enum {
  84.     kSndID_AutoIdle            = 128,
  85.     kSndID_AutoBurn,
  86.     kSndID_AutoExplosion
  87. };
  88.  
  89.  
  90. #endif /* __DZResource__ */